home *** CD-ROM | disk | FTP | other *** search
- Path: news1.is.net!news
- From: mvantassel@teambca.com (Mark VanTassel)
- Newsgroups: comp.lang.c++
- Subject: Re: Help with MS V. C++ 1.5 COMMON DLG invocation
- Date: Tue, 02 Apr 1996 01:46:18 GMT
- Organization: Barfield, Cauthen and Associates
- Message-ID: <4jpmh7$9r2@news1.is.net>
- References: <4jc9f6$47h@news.internetmci.com>
- NNTP-Posting-Host: dynamic26.is.net
- X-Newsreader: Forte Free Agent 1.0.82
-
- ticker@anon.penet.fi (Tike) wrote:
-
- >I need help invoking the COMMON DIALOG ( Open File ) and retrieving
- >the Returned file name in microsoft visual C++ ver: 1.5 for Windows,
-
- >any help would be apprecitated.
-
- >Thanks
-
- CFileDialog OpenDlg(TRUE, NULL, NULL, 0, "All Files (*.*)|*.*", NULL);
- if (OpenDlg.DoModal() == IDCANCEL) return FALSE;
- CString FileName = OpenDlg.GetPathName();
-
-
-
-